home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Directories
/
FileInfoLoop.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
377b
|
26 lines
// FileInfoLoop.h
#ifndef FileInfoLoop_h
#define FileInfoLoop_h
#ifndef CatInfoLoop_h
#include "CatInfoLoop.h"
#endif
class FileInfoLoop: public CatInfoLoop
{
private:
void AdvanceToNextMatch();
public:
FileInfoLoop() {}
FileInfoLoop( Directory );
void Start( Directory );
void operator++();
void operator++(int) { operator++(); }
};
#endif